home *** CD-ROM | disk | FTP | other *** search
- // ---------------------------------------------------------------------------
- // • AVF 1.1 - Asynchronous Video Framework
- // •
- // • Philippe Lang, 1733 Treyvaux, SWITZERLAND
- // • plang@com.mcnet.ch
- // ---------------------------------------------------------------------------
-
- #pragma once
-
- #include <QDOffscreen.h>
-
- enum OffscreenErr { NewGWorldErr, LockPixelsErr };
-
- class OffscreenWorld {
- public:
- OffscreenWorld( const Rect boundsRect ) throw ( OffscreenErr );
- OffscreenWorld( short PixelDepth, const Rect boundsRect, CTabHandle cTable ) throw ( OffscreenErr );
- ~OffscreenWorld();
- PixMapHandle PixMapH() { return ( mPixMapH ); };
-
- protected:
- GWorldPtr mGWorldP;
- PixMapHandle mPixMapH;
- };